home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-06 / nwl200.zip / 230.ASC < prev    next >
Text File  |  1991-10-29  |  4KB  |  98 lines

  1.                                FYI
  2.  
  3. Note: The origin of this information may be internal or external
  4. to Novell.  Novell makes every effort within its means to verirfy
  5. this information.  However, the information provided in this
  6. document is FOR YOUR INFORMATION only.  Novell makes no explicit
  7. or implied claims to the validity of this information.
  8.  
  9.             TITLE:  Assisting Floppy Based Clients
  10.      DOCUMENT ID#:  FYI.P.6017
  11.              DATE:  October 29, 1991
  12.           PRODUCT:  NetWare Lite
  13.   PRODUCT VERSION:  All versions
  14.        SUPERSEDES:  NA
  15.  
  16.           SYMPTOM:  NA
  17.  
  18. ISSUE/PROBLEM
  19.  
  20. Assisting Floppy Based Clients
  21.  
  22. If there are workstations on the network that don't have hard
  23. disks then we suggest that NetWork Directories be set up to help
  24. those workstations.  A DOS shared Network Directory should be
  25. created so that workstations with no hard disks can load DOS
  26. commands from the network.   A Network Directory sharing IBM DOS
  27. version 3.10 (named IBM_DOS_310 perhaps) would be useful for
  28. those CLIENTs with only floppy drives to get to their version of
  29. DOS.  In conjunction with this, the DOS environment variable
  30. "COMSPEC" should be set to allow you to load COMMAND.COM from
  31. across the network.  For example, these lines could be included
  32. in an AUTOEXEC.BAT or STARTNET.BAT file:
  33.  
  34.      NET MAP F: IBM_DOS_310
  35.      SET COMSPEC=F:\COMMAND.COM
  36.  
  37. In addition, workstations that only have floppies can be assisted
  38. by creating a Network Directory where the NetWare Lite utility
  39. (NET.EXE, NET.OVL, NET.HLP and LITE$RUN.OVL) can be loaded;
  40. instead of always loading them from the floppy.  We suggest that
  41. a Network Directory called NWLITE be created.  This directory
  42. should be a SERVER's C:\NWLITE  directory.  We also suggest that
  43. this Network Directory be given default rights of READ and not
  44. the default of ALL.
  45.  
  46. All floppy-only CLIENTs should map a drive to this resource and
  47. add the drive to their DOS path.  This will allow the loading of
  48. the NET utility from across the network; a much better solution
  49. than loading from floppy.  For example, these lines could be
  50. included in an AUTOEXEC.BAT or STARTNET.BAT file:
  51.  
  52.      NET MAP M: NWLITE
  53.      PATH=M:.;%PATH%
  54.  
  55. If you want to run the CLIENT from a floppy drive and have that
  56. diskette be the boot diskette, the following configuration is
  57. suggested.  (Where ever NE2000.COM appears, replace it with the
  58. appropriate driver name you are using.  Also, L: and M: are
  59. simply used as examples; you may use any other valid driver
  60. letters.  We map drive M: to the Network Directory NWLITE as
  61. described above.  Similarly, L: is mapped to the Network
  62. Directory IBM_DOS_310 as described above.)
  63.  
  64. 1. Create a bootable diskette using the FORMAT A: /S
  65.    command.
  66.  
  67. 2. Copy the following NetWare Lite files to the diskette:
  68.    LSL.COM
  69.    NE2000.COM
  70.    IPXODI.COM
  71.    CLIENT.EXE
  72.    NET.EXE
  73.    NET.CFG
  74.  
  75. 3. Create an AUTOEXEC.BAT with the following lines added to it:
  76.    LSL
  77.    NE2000
  78.    IPXODI A
  79.    CLIENT
  80.    NET LOGIN
  81.    NET MAP L: IBM_DOS_310
  82.    NET MAP M: NWLITE
  83.    PATH=L:\;M:\;%PATH%
  84.    SET COMSPEC=L:\COMMAND.COM
  85.  
  86. 4. Create an CONFIG.SYS with the following line added to it.
  87.    LASTDRIVE=M
  88.  
  89. For those Network Directories that contain applications
  90. (executables) the drives used to map to these applications should
  91. be included in the DOS environment variable PATH.  For example,
  92. these lines could also be included in an AUTOEXEC.BAT or
  93. STARTNET.BAT file:
  94.  
  95.  NET MAP G: TURBOC
  96.  NET MAP H: WORDPERFECT
  97.  NET MAP I: GAMES
  98.  SET PATH=G:\BIN;H:.;I:\TETRIS;%PATH%